home *** CD-ROM | disk | FTP | other *** search
- package org.apache.xalan.xslt;
-
- import org.apache.xalan.xpath.xml.XSLMessages;
- import org.w3c.dom.Attr;
- import org.w3c.dom.DOMException;
- import org.w3c.dom.Document;
- import org.w3c.dom.Element;
- import org.w3c.dom.NamedNodeMap;
- import org.w3c.dom.Node;
- import org.w3c.dom.NodeList;
-
- class UnImplNode implements Element, NodeList {
- void error(int var1) {
- throw new RuntimeException(XSLMessages.createMessage(var1, (Object[])null));
- }
-
- void error(int var1, Object[] var2) {
- throw new RuntimeException(XSLMessages.createMessage(var1, var2));
- }
-
- public Node appendChild(Node var1) throws DOMException {
- this.error(80);
- return null;
- }
-
- public boolean hasChildNodes() {
- this.error(80);
- return false;
- }
-
- public short getNodeType() {
- this.error(80);
- return 0;
- }
-
- public Node getParentNode() {
- this.error(80);
- return null;
- }
-
- public NodeList getChildNodes() {
- this.error(80);
- return null;
- }
-
- public Node getFirstChild() {
- this.error(80);
- return null;
- }
-
- public Node getLastChild() {
- this.error(80);
- return null;
- }
-
- public Node getNextSibling() {
- this.error(80);
- return null;
- }
-
- public int getLength() {
- this.error(80);
- return 0;
- }
-
- public Node item(int var1) {
- this.error(80);
- return null;
- }
-
- public Document getOwnerDocument() {
- this.error(80);
- return null;
- }
-
- public String getTagName() {
- this.error(80);
- return null;
- }
-
- public String getNodeName() {
- this.error(80);
- return null;
- }
-
- public void normalize() {
- this.error(80);
- }
-
- public NodeList getElementsByTagName(String var1) {
- this.error(80);
- return null;
- }
-
- public Attr removeAttributeNode(Attr var1) throws DOMException {
- this.error(80);
- return null;
- }
-
- public Attr setAttributeNode(Attr var1) throws DOMException {
- this.error(80);
- return null;
- }
-
- public Attr getAttributeNode(String var1) {
- this.error(80);
- return null;
- }
-
- public void removeAttribute(String var1) throws DOMException {
- this.error(80);
- }
-
- public void setAttribute(String var1, String var2) throws DOMException {
- this.error(80);
- }
-
- public String getAttribute(String var1) {
- this.error(80);
- return null;
- }
-
- public NodeList getElementsByTagNameNS(String var1, String var2) {
- this.error(80);
- return null;
- }
-
- public Attr setAttributeNodeNS(Attr var1) throws DOMException {
- this.error(80);
- return null;
- }
-
- public Attr getAttributeNodeNS(String var1, String var2) {
- this.error(80);
- return null;
- }
-
- public void removeAttributeNS(String var1, String var2) throws DOMException {
- this.error(80);
- }
-
- public void setAttributeNS(String var1, String var2, String var3) throws DOMException {
- this.error(80);
- }
-
- public String getAttributeNS(String var1, String var2) {
- this.error(80);
- return null;
- }
-
- public Node getPreviousSibling() {
- this.error(80);
- return null;
- }
-
- public Node cloneNode(boolean var1) {
- this.error(80);
- return null;
- }
-
- public String getNodeValue() throws DOMException {
- this.error(80);
- return null;
- }
-
- public void setNodeValue(String var1) throws DOMException {
- this.error(80);
- }
-
- public NamedNodeMap getAttributes() {
- this.error(80);
- return null;
- }
-
- public Node insertBefore(Node var1, Node var2) throws DOMException {
- this.error(80);
- return null;
- }
-
- public Node replaceChild(Node var1, Node var2) throws DOMException {
- this.error(80);
- return null;
- }
-
- public Node removeChild(Node var1) throws DOMException {
- this.error(80);
- return null;
- }
-
- public boolean supports(String var1, String var2) {
- this.error(80);
- return false;
- }
-
- public String getNamespaceURI() {
- this.error(80);
- return null;
- }
-
- public String getPrefix() {
- this.error(80);
- return null;
- }
-
- public void setPrefix(String var1) throws DOMException {
- this.error(80);
- }
-
- public String getLocalName() {
- this.error(80);
- return null;
- }
- }
-